home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / graphics / tiff / Makefile < prev    next >
Makefile  |  1992-03-29  |  2KB  |  76 lines

  1. #    $Header: /usr/people/sam/tiff/RCS/Makefile,v 1.21 92/03/29 15:54:34 sam Exp $
  2.  
  3. NULL=
  4.  
  5. default:
  6.  
  7. clean:
  8.     -cd libtiff; make clean; rm -f Makefile
  9.     -cd tools; make clean; rm -f Makefile
  10.     -cd contrib/fax2ps; make clean
  11.     -cd contrib/dbs; make clean
  12.     -cd contrib/dbs/xtiff; make clean
  13.     -cd man/man3; make clean
  14.  
  15. tiff.tar: clean
  16.     tar cvf tiff.tar \
  17.         Makefile \
  18.         HOWTO \
  19.         README \
  20.         CHANGES-v2.3 \
  21.         CHANGES-v2.4 \
  22.         CHANGES-v2.5 \
  23.         CHANGES-v3.0 \
  24.         VERSION \
  25.         Copyright \
  26.         doc/ClassF.txt \
  27.         doc/TIFF6.ps \
  28.         man/man1/*.1 \
  29.         man/man3/*.3t \
  30.         libtiff/README \
  31.         libtiff/*.[ch] \
  32.         libtiff/Makefile* \
  33.         tools/*.[ch] \
  34.         tools/Makefile* \
  35.         contrib/dbs/README \
  36.         contrib/dbs/*.c \
  37.         contrib/dbs/Imakefile \
  38.         contrib/dbs/xtiff/Imakefile \
  39.         contrib/dbs/xtiff/README \
  40.         contrib/dbs/xtiff/*.[ch] \
  41.         contrib/fax2ps/README \
  42.         contrib/fax2ps/Makefile \
  43.         contrib/fax2ps/*.[ch] \
  44.         contrib/fax2ps/fax2ps.1 \
  45.         contrib/ras \
  46.         contrib/vms \
  47.         contrib/xv \
  48.         ${NULL}
  49.     compress tiff.tar
  50. tiffpics.tar:
  51.     tar cvf tiffpics.tar \
  52.         pics/README \
  53.         pics/cramps.tif \
  54.         pics/cramps-tile.tif \
  55.         pics/fax2d.tif \
  56.         pics/g3test.tif \
  57.         pics/jello.tif \
  58.         pics/jim___cg.tif \
  59.         pics/jim___dg.tif \
  60.         pics/jim___gg.tif \
  61.         pics/jim___ah.tif \
  62.         pics/strike.tif \
  63.         pics/oxford.tif \
  64.         pics/quad-lzw.tif \
  65.         pics/quad-tile.tif \
  66.         pics/text.tif \
  67.         pics/ycbcr-cat.tif \
  68.         pics/smallliz.tif \
  69.         pics/zackthecat.tif \
  70.         pics/fax2d.g3 \
  71.         pics/g3test.g3 \
  72.         ${NULL}
  73.     compress tiffpics.tar
  74.  
  75. both:    tiff.tar tiffpics.tar
  76.